home *** CD-ROM | disk | FTP | other *** search
/ Languguage OS 2 / Languguage OS II Version 10-94 (Knowledge Media)(1994).ISO / gnu / shllutil.lha / shellutils-1.8 / src / whoami.c < prev    next >
C/C++ Source or Header  |  1991-08-29  |  1KB  |  50 lines

  1. /* whoami -- print effective userid
  2.    Copyright (C) 1989, 1991 Free Software Foundation, Inc.
  3.  
  4.    This program is free software; you can redistribute it and/or modify
  5.    it under the terms of the GNU General Public License as published by
  6.    the Free Software Foundation; either version 2, or (at your option)
  7.    any later version.
  8.  
  9.    This program is distributed in the hope that it will be useful,
  10.    but WITHOUT ANY WARRANTY; without even the implied warranty of
  11.    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  12.    GNU General Public License for more details.
  13.  
  14.    You should have received a copy of the GNU General Public License
  15.    along with this program; if not, write to the Free Software
  16.    Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.  */
  17.  
  18. /* Equivalent to `id -un'. */
  19. /* Written by Richard Mlynarik. */
  20.  
  21. #include <stdio.h>
  22. #include <sys/types.h>
  23. #include <pwd.h>
  24. #include "system.h"
  25.  
  26. void
  27. main (argc, argv)
  28.      int argc;
  29.      char *argv[];
  30. {
  31.   register struct passwd *pw;
  32.   register uid_t uid;
  33.  
  34.   if (argc != 1)
  35.     {
  36.       fprintf (stderr, "Usage: %s\n", argv[0]);
  37.       exit (1);
  38.     }
  39.  
  40.   uid = geteuid ();
  41.   pw = getpwuid (uid);
  42.   if (pw)
  43.     {
  44.       puts (pw->pw_name);
  45.       exit (0);
  46.     }
  47.   fprintf (stderr,"%s: cannot find username for UID %u\n", argv[0], uid);
  48.   exit (1);
  49. }
  50.